home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 7
/
Apprentice-Release7.iso
/
Environments
/
Small Eiffel 0.4.8
/
misc
/
self_eval_test
< prev
next >
Wrap
Text File
|
1997-01-03
|
707b
|
36 lines
#!/bin/csh
#
# Run this file to test the command `eval'.
#
# Usage : basic_test [args_for_eval]
#
#set verbose = 1
if (!($?SmallEiffel)) then
echo "Environment Variable 'SmallEiffel' not set."
exit 1
endif
set ev=${SmallEiffel}/bin/eval
$ev $* HELLO_WORLD make
echo Testing $ev $*
echo Options : $*
cd ${SmallEiffel}/lib_test
echo -n "Testing ."
###################################################################
${ev} $* testargs make
echo -n "."
${ev} $* testargs make 1
echo -n "."
${ev} $* testargs make 2 arg2
echo "."
foreach t (vide.e test_*.e)
echo $t
if ("$t" == "test_address_of1.e") then
else if ("$t" == "test_any.e") then
else
$ev $* $t make
echo -n "."
endif
end
echo " Done."